home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 438 b | 24 lines |
-
- include $(ROOT)/usr/include/make/commondefs
-
- LCOPTS = -xansi -D__STDC__ -g
- LCINCS = -I../include
- CVERSION=
- TARGETS = test test_clib test_mdb
- PROTOTYPES=
-
- default all: $(TARGETS)
-
- include $(COMMONRULES)
-
- test: test.c
- $(CCF) -o test test.c $(LDFLAGS)
-
- test_clib: test.c
- $(CCF) -o test_clib -DCLIBS_DEBUG=1 test.c $(LDFLAGS) -lmalloc
-
- test_mdb: test.c malloc_db.c
- $(CCF) -o test_mdb -DMDB_DEBUG=1 test.c malloc_db.c $(LDFLAGS) -lmpc
-
-
-